home *** CD-ROM | disk | FTP | other *** search
- # Microsoft MSDOS makefile for inductance calculator
-
- coil.obj: coil.c
- cl /c coil.c
-
- formulae.obj: formulae.c lyle.h
- cl /c formulae.c
-
- mathl.obj: mathl.c
- cl /c mathl.c
-
- tables.obj: tables.c
- cl /c tables.c
-
- coil.exe: coil.obj formulae.obj mathl.obj
- link coil formulae mathl;
-
- tables.exe: tables.obj formulae.obj mathl.obj
- link tables formulae mathl;
-
-